/* Google Font Poppins Imort */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
.wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.search-bar input{
  max-width: 400px;
  width: 200%;
  height: 40px;
  border: none;
  outline: none;
  padding-left: 18px;
  font-size: 17px;
  border-radius: 5px;
}
.search-bar .icon i{
  position: relative;
  left: 373px;
  top: -33px;
  cursor: pointer;
}
.search-bar.show .auto-complete{
  opacity: 1;
  pointer-events: auto;
}
.search-bar .auto-complete{
  background: #fff;
  width: 400px;
  padding: 10px 10px;
  position: relative;
  top: -30px;
  opacity: 0;
  pointer-events: none;
  border-radius: 5px;
}
.search-bar .auto-complete li{
  list-style: none;
  margin: 10px;
  cursor: default;
  padding: 10px;
  border-radius: 5px;
  font-weight: 400;
  display: none;
}
.search-bar .auto-complete li:hover{
  background: #ddd;
}
.search-bar.show .auto-complete li{
  display: block;
}
